:root {
  --nav-primary: #0f1e38;
  --nav-secondary: #d97328;
  --nav-btn-hover: #f99144;
  --nav-white: #fff;
  --nav-height: 96px;
  --hero-bg-fallback: #123267;
  --hero-accent-blue: #377bed; /* eyebrow text color */
  --hero-cta-bg: #d97328;
  --hero-cta-hover: #f99144;
  --color-black: #000;
  --gold-accent: rgb(180, 153, 0);
  --gold-secondary: #d4af37;
  --border-light: #ccc;
  --overlay-dark: rgba(0, 0, 0, 0.18);
  --bg-light: #f8f9fb;
  --gradient-dark: linear-gradient(to bottom, #000000 0%, #0d0d0d 95%, #111111a2 100%);
  --font-heading: "Playfair Display", serif;
  --font-body: "Open Sans", sans-serif;
  --font-accent: "Georgia", "Times New Roman", serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* ---------- Global Resets & Layout Common ---------- */
.site-header,
.site-header *,
.intro,
.intro *,
.approach,
.approach *,
.pledge,
.pledge *,
.pi-section,
.pi-section *,
.attorney,
.attorney *,
.faq,
.faq *,
.reviews,
.reviews *,
.traffic-map,
.traffic-map *,
.office,
.office *,
.site-footer,
.site-footer * {
  box-sizing: border-box;
}

/* Common container style for content alignment */
.hero .container,
.intro-container,
.approach-container,
.pledge-container,
.pi-container,
.faq-container,
.attorney-container,
.reviews-container,
.traffic-map-container,
.site-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Flex layout structures */
.intro-container,
.approach-container,
.pledge-container,
.pi-container {
  display: flex;
  flex-wrap: wrap;
}

.intro-container,
.approach-container,
.pledge-container {
  align-items: stretch;
}

/* Common section padding */
.intro,
.approach,
.pledge,
.attorney,
.reviews,
.office {
  padding: 2.5rem 0;
}


.intro-text,
.intro-media,
.approach-media,
.approach-text,
.pledge-text,
.pledge-media {
  flex: 0 0 100%;
  max-width: 100%;
}

.intro-text,
.intro-media,
.approach-media,
.approach-text,
.pledge-text {
  padding: 1.5rem;
}

.intro-text,
.approach-text,
.pledge-text {
  font-size: 18px;
}

.intro-text p,
.approach-text p,
.pledge-text p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
}

.intro-text h2,
.approach-text h2,
.pledge-text h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 50px;
  line-height: 55px;

  color: var(--gold-accent);
  margin: 0 0 1rem;
}

.intro-text-02{
  display: none;
}


.hero-cta,
.pi-cta {
  display: inline-block;
  min-width: 300px;
  padding: 17px;
  background-color: var(--nav-secondary);
  color: var(--nav-white);
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.hero-cta:hover,
.pi-cta:hover {
  background-color: var(--nav-btn-hover);
  color: var(--nav-white);
}


/* NAVIGATION SECTION */

.site-header a {
  text-decoration: none;
}

.site-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header .btn {
  display: inline-block;
  background-color: var(--nav-secondary);
  color: var(--nav-white);
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.site-header .btn:hover {
  background-color: var(--nav-btn-hover);
}

.mobile-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  background: var(--nav-primary);
}

.mobile-cta-bar .call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.mobile-cta-bar .consult-btn {
  flex: 1;
  text-align: center;
}

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--gradient-dark);
  border-bottom: 1px solid rgba(100, 100, 100, 0.938) ;

  background-position: center;
  background-size: cover;
  padding: 5px 0 8px;
}

.header-main.is-scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-spacer {
  width: 100%;
  height: var(--nav-height);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.navbar-brand-col {
  order: 1;
  flex: 0 0 66.66%;
  max-width: 66.66%;
}

.navbar-brand {
  display: inline-block;
}

.navbar-brand img {

  max-width: 80px;
  border-radius: 40px;
  height: auto;
  margin-bottom: -40px;
}

.firm-logo {
  max-width: 170px;
  height: auto;
  position: relative;
  top: 20px;
  
}

.navbar-toggler {
  order: 2;
  margin-left: auto;
  background: transparent;
  border: none;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  position: relative;
  z-index: 1060;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 26px;
  height: 20px;
  position: relative;
}

.navbar-toggler-icon .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--nav-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.bar-top {
  top: 0;
}

.bar-mid {
  top: 50%;
  transform: translateY(-50%);
}

.bar-bottom {
  top: 100%;
  transform: translateY(-100%);
}

.navbar-toggler[aria-expanded="true"] .bar-top {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .bar-mid {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .bar-bottom {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.navbar-menu-col {
  order: 3;
  flex: 0 0 100%;
  max-width: 100%;
}

.top-bar-content {
  display: none;
  text-align: right;
  margin: 0 0 12px;
  font-family: var(--font-accent);
  font-size: 15px;
  color: var(--nav-white);
  text-transform: uppercase;
}

.top-bar-content svg {
  margin: -1px 2px 0;
  vertical-align: middle;
}

.top-bar-content a {
  display: inline-block;
  padding: 0 20px 0 0;
  color: var(--nav-white);
}

.navbar-collapse {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.navbar-nav {
  display: none;
  width: 100%;
  flex-wrap: wrap;
}

.navbar-nav.show {
  display: flex;
}

.nav-item {
  position: relative;
  white-space: nowrap;
}

.nav-item a i{
  margin-left: 1px;
  font-size: 11px;
}

.nav-link,
.dropdown-toggle {
  display: inline-block;
  padding: 1rem 0.5rem;
  color: var(--nav-white);
  font-family: var(--font-accent);
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
}

.has-dropdown .dropdown-toggle {
  position: relative;
  padding: 1rem 1.5rem 1rem 0;
}

.dropdown-menu {
  display: none;
  min-width: 220px;
  padding: 0;
  border: 0;
  background-color: var(--color-black);
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 8px 12px;
  font-family: var(--font-accent);
  color: var(--nav-white) !important;
  background-color: var(--nav-secondary);
  border-bottom: 1px solid var(--border-light);
}

.dropdown-item:hover,
.dropdown-item.current {
  background-color: var(--color-black);
  color: var(--nav-white) !important;
}

/* HERO SECTION */

.hero {
  display: block;
  color: var(--nav-white);
  background: linear-gradient(
        to bottom,
        var(--color-black) 0%,
        #0d0d0d 40%,
        var(--nav-white) 100%
  );

  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-img-guy {
  flex: 1;
  text-align: right;
}

.hero-img {
  max-width: 100%;
  height: auto;
  margin-top: -50px;

  -webkit-mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
}

.hero-inner {
  z-index: 2;
  max-width: 745px;
  padding: 100px 0 230px 50px;
}

.hero-eyebrow {
  margin: 2.5rem 0 0.5rem;

  font-family: var(--font-accent);
  font-size: 1.5rem; /* 20px */
  font-weight: bold;
  letter-spacing: -0.4px;
  color: rgb(214, 203, 203);
}

.hero-headline {
  margin: 1.5rem 0 1.5rem;
  padding-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-size: 65px;
  line-height: 70px;
  font-weight: bold;
  color: var(--nav-white);
  width: 80%;

}

.hero-subtext {
  padding-bottom: 0.5rem;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
}

.hero-cta {
  margin-top: 10px;
  border-radius: 0;
}

/* BADGES SECTION */

.badges {
  padding: 40px 0;
}

.badges-heading {
  margin: 0 0 20px;
  text-align: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badges-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.badge-item {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 1rem;
}

.badge-item img {
  width: auto;
  max-width: 100%;
  transition: filter 0.2s ease;
}



/* INTRO SECTION */

.intro {
  position: relative;
}

.intro-media {
  position: relative;
  background-image: url("../images/main-barr.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  z-index: 1;
}

.intro-media img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
}

/* APPROACH SECTION */

.approach {
  padding: 1rem 0;
}

.approach-text {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 0.25rem;
}

.approach-text-02{
  display: none;
  margin: 0px 0px 20px;
}

.approach-media img {
  max-width: 100%;
  height: auto;
}


/* PLEDGE SECTION */

.pledge-text a {
  color: inherit;
}

.pledge-text strong{
  color: var(--gold-secondary)

}

.pledge-text a{
  text-decoration: underline var(--gold-secondary);
}

.pledge-media {
  position: relative;
  min-height: 300px;
  background-image: url("../images/half-image.jpg");
  background-position: center;
  background-size: cover;
}

.pledge-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}

/* ATTORNEY INTRO - PI SECTION */

.pi-section {
  color: var(--nav-white);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.253), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.199), transparent 35%),
    var(--color-black);
  background-position: center;
  background-size: cover;
  padding: 150px 0 160px;
}

.pi-left {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 1rem;
}

.pi-left h2 {
  font-size: 53px;
  margin: 0 0 40px;
  color: var(--gold-secondary);
}

.pi-left p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 30px;
}

.pi-left p strong{
  color: var(--gold-secondary);

}

.pi-left a {
  color: inherit;
  text-decoration: none;
}

.pi-left img {
  max-width: 100%;
  height: auto;
  margin-top: 60px;
}

.pi-right {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 1rem;
}

.pi-right p {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 35px;
}

.pi-right p strong {
  color: var(--gold-secondary);
}

.pi-checklist {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.pi-checklist li {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: bold;
}

.pi-checklist i {
  color: var(--nav-secondary);
}

.pi-cta-wrap {
  text-align: center;
}

/* ATTORNEY SECTION */

.attorney {
  padding: 100px 30px;
  background: linear-gradient(to bottom, var(--nav-white), var(--bg-light));
}

.attorney-container {
  max-width: 1200px;
  margin: 0 auto;
}

.attorney-heading {
  text-align: center;
  margin-bottom: 70px;
  margin-top: -75px;
}

.attorney-heading h2 {
  color: var(--gold-accent);
  font-size: 45px;
  margin-bottom: 12px;

}

.attorney-heading p {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--hero-accent-blue);
  margin: 0;
}

.attorney-card {
  display: flex;
  align-items: center;
  gap: 70px;
  background: #ffffff;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.attorney-photo {
  width: 380px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.attorney-info {
  flex: 1;
  text-align: left;
}

.attorney-info h3 {
  font-size: 38px;
  color: var(--nav-primary);
  margin: 0;
}

.attorney-info h3::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin: 18px 0 30px;
  background: var(--gold-secondary);
}

.attorney-bio {
  padding: 0;
}

.attorney-bio p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.9;
  color: #495057;
  margin-bottom: 20px;
}

.attorney-info .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 34px;
  background: var(--nav-secondary);
  color: var(--nav-white);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all .3s ease;
}

.attorney-info .btn:hover {
  background: var(--nav-btn-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(217, 115, 40, .35);
}



/* FAQ SECTION */

.faq {
  background-image: url("https://cdn-hiobf.nitrocdn.com/TPAWEHMtqaHSEFDtcDDbfLkroIZlIBUX/assets/images/optimized/rev-82ae670/www.helpinginjuredpeople.com/wp-content/uploads/2023/05/shape-arrow.png");
  background-position: center;
  background-size: cover;
  padding: 150px 0 160px;
}

.faq-container {
  display: block;
}

.faq-heading {
  text-align: center;
  font-size: 53px;
  margin: 0 0 50px;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-question {
  margin: 0;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 26px 5px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.3;
  font-weight: bolder;
  color: #a3551e;
}

.faq-toggle:hover {
  color: var(--nav-secondary);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 16px;
  color: var(--nav-secondary);
  transition: transform 0.3s ease;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-panel p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  padding: 0 5px 26px;
}


/* REVIEWS SECTION */

.reviews {
  text-align: center;
}

.reviews-eyebrow {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 22px;
  color: var(--hero-accent-blue); 
  margin: 0 0 5px;
}

.reviews-heading {
  font-size: 35px;
  margin: 0 0 55px;
}

.reviews-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.review-card {
  text-align: left;
  padding: 0 40px 100px;
  border-right: 0.5px solid #ccced3;
  border-image: linear-gradient(35deg, var(--hero-bg-fallback), var(--nav-white)) 1;
}

.review-card:first-child {
  border-left: 0.5px solid var(--hero-bg-fallback);
}

.review-card h3 {
  font-size: 20px;
  line-height: 32px;
  margin: 0;
}

.review-card .five-stars {
  display: flex;
  margin: 5px 0 18px;
  column-gap: 2px;
  color: var(--nav-secondary); 
}

.review-card .five-stars i {
  font-size: 13px;
}

.review-card p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}

/* ---------- Reviews Carousel (mobile) ---------- */
.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
}

.review-nav {
  display: none; 
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--nav-primary);
  color: var(--nav-white);
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 30, 56, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.review-nav:hover {
  background: var(--nav-secondary);
  transform: translateY(-2px);
}

.review-nav:active {
  transform: translateY(0);
}

.reviews-dots {
  display: none; 
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.reviews-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d9d9d9;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.reviews-dots .dot.active {
  background: var(--nav-secondary);
  transform: scale(1.25);
}


/* TRAFFIC-MAP SECTION */
.traffic-map {
  position: relative;
  background-color: rgba(180, 153, 0, 0.205);
  padding-top: 200px;
  padding-bottom: 2.5rem;
}

.traffic-map::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 150px;
  background: url("https://cdn-hiobf.nitrocdn.com/TPAWEHMtqaHSEFDtcDDbfLkroIZlIBUX/assets/images/optimized/rev-82ae670/www.helpinginjuredpeople.com/wp-content/uploads/2023/06/shape-arrow-1.jpg") no-repeat top center / cover;
}

.traffic-map-heading {
  font-size: 35px;
  margin: 0 0 30px;
}

.traffic-map-eyebrow {
  font-family: var(--font-accent);
  font-weight: bold;
  color: var(--hero-accent-blue); 
  margin: 0 0 5px;
}

.traffic-map-embed {
  display: block;
  width: 100%;
  height: 700px;
  border: 2px solid var(--border-light);
}

/* OFFICE SECTION */

.office-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

.office-heading {
  margin: 0 0 10px;
  text-align: center;
  font-size: 40px;
}

.office-subtext {
  font-family: var(--font-body);
  color: var(--nav-primary); 
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}

.office-nb{
  font-style: italic;
  font-weight: bold;
}

.office-subtext p {
  margin: 0;
}

.office-divider {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 20px 0 30px;
}

.office-card {
  text-align: left !important;
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.office-card h3 {
  font-size: 28px;
  line-height: 32px;
  margin: 0 0 12px;
}

.office-card p {
  font-family: var(--font-body);
  margin: 0 0 10px;
}

.office-directions {
  color: #ff6200;
  text-decoration: none;
}

.office-directions:hover {
  text-decoration: underline;
}

.office-map {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
  margin-top: 15px;
}


/* FOOTER SECTION */

.site-footer {
  position: relative;
  color: var(--nav-white);

  background: var(--gradient-dark);
  background-position: center;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 20px;
}



.site-footer a {
  color: var(--nav-white);
  text-decoration: none;
}

.footer-top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
}

.footer-logo img {
  display: block;
  max-width: 195px;
  height: auto;
  width: 60px;
}

.footer-nav {
  flex: 1;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 30px;
}

.footer-nav a {
  display: inline-block;
  padding: 10px 0;
  font-family: var(--font-accent);
  font-size: 20px;
  line-height: 27px;
  font-weight: bold;
}

.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
  padding-top: 25px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-copyright {
  font-family: var(--font-body);
  margin: 0;
  font-size: 15px;
  line-height: 27px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  background-color: var(--nav-btn-hover);
}

.footer-socials a i {
  font-size: 20px;
}


/* RESPOSIVENESS SECTION */

/* ---------- min-width: 768px ---------- */
@media (min-width: 768px) {
  .mobile-cta-bar {
    display: none;
  }

  .top-bar-content {
    display: block;
  }
}

@media (max-width: 600px) {

  .attorney {
    padding: 70px 20px;
  }

  .attorney-heading h2 {
    font-size: 30px;
  }

  .attorney-heading p {
    font-size: 18px;
  }

  .attorney-info h3 {
    font-size: 30px;
  }

  .attorney-bio p {
    font-size: 17px;
  }

  .attorney-info .btn {
    width: 100%;
  }

  .faq-toggle {
    font-size: 19px;
    padding: 20px 5px;
  }

}

/* ---------- min-width: 992px ---------- */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }

  .navbar-nav {
    display: flex;
    width: auto;
  }

  .nav-link,
  .dropdown-toggle {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.5px;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 25px;
  }

  .has-dropdown:hover > .dropdown-menu {
    display: block;
  }
  
  .intro-text,
  .intro-media,
  .approach-media,
  .approach-text,
  .pledge-text,
  .pledge-media {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .intro-media{
    display: flex;
    align-items: center;
  }

  .pledge-media {
    min-height: auto;
  }

  .approach-img-desktop {
    display: block;
  }

  .approach-img-mobile {
    display: none;
  }

  .pi-left {
    flex: 0 0 58.33%;
    max-width: 58.33%;
  }

  .pi-right {
    flex: 0 0 41.67%;
    max-width: 41.67%;
  }

  .office-container {
    text-align: left;
  }

}

@media (max-width: 900px) {
  
  .attorney-card {
    flex-direction: column;
    text-align: center;
    padding: 22px 16px;   
    gap: 25px;           
  }

  .attorney-info {
    text-align: center;
  }

  .attorney-info h3::after {
    margin: 18px auto 30px;
  }

  .attorney-photo {
    width: 300px;
  }

  .traffic-map{
    display: none;
  }

}


/* ---------- min-width: 2000px ---------- */
@media (min-width: 2000px) {
  
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
  }
}

/* ---------- max-width: 1199px ---------- */
@media (max-width: 1199px) {
  .hero-inner {
    max-width: 645px;
  }

  .badge-item-1{
    display: none;
  }

  .approach-media {
  order: 2;
  padding-top: 0;
  }

  .pledge-text{
    margin-top: 40px;
  }

  .pledge{
    display: none;
  }

  .footer-logo img {
    margin: -20px auto 15px;
  }

  .hero-headline {
    font-size: 55px;
  }

  .intro-text h2,
  .approach-text h2,
  .pledge-text h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .approach-text-01{
    display: none;
  }

  .approach-text-02{
    display: block;
  }

  .intro-text-01{
    display: none;
  }

  .intro-text-02{
    display: block;
    margin: 40px auto;
  }

  .pi-checklist, .pi-right p{
    display: none;
  }

  .pi-cta-wrap{
    display: block !important;
    margin-bottom: -30px !important;
  }

  .pi-section,
  .faq {
    padding: 120px 0 120px;
  }

  .pi-left h2 {
    font-size: 45px;
    margin-bottom: 25px;
  }

  .faq-heading {
    font-size: 45px;
    margin-bottom: 25px;
  }

  .review-card {
    padding: 0 40px 55px;
  }
}

/* ---------- max-width: 991px ---------- */
@media (max-width: 991px) {
  
  .dropdown-menu.show {
    position: static;
    width: 100%;
    margin-bottom: 0;
  }



  .dropdown-item {
    padding: 5px 18px;
    text-transform: capitalize;
  }

  /* Full-screen mobile nav overlay */
  .navbar-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--nav-height));
    height: auto;
    margin: 0;
    padding: 20px;
    background-color: var(--color-black);
    flex-direction: column;
    overflow-y: auto;
    z-index: 1050;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-item-contact a i{
    color: transparent; 
  }

  .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    letter-spacing: -0.5px;
    font-family: var(--font-accent);
  }

  .dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  .hero-inner {
    max-width: 560px;
  }

  .hero-headline {
    font-size: 48px;
    line-height: 60px;
  }

  .approach-text {
    text-align: center;
  }

  .approach-text p{
    font-size: 20px;

  }

  .approach-media  {
    margin-top: 5px;
  }

  .approach-media {
  order: 2;
  padding-top: 0;
  }

  .pledge-text {
    text-align: center;
  }

  .pi-section,
  .faq {
    padding: 70px 0 90px;
    text-align: center;
  }

  .pi-left img {
    margin-top: 40px;
    width: 100%;
  }

  .attorney-heading h2 {
    font-size: 45px;
  }

  .attorney-heading p {
    font-size: 20px;
  }

  .attorney-bio {
    min-height: 215px;
  }

  .attorney-bio p {
    font-size: 16px;
  }

  .attorney-info .btn {
    margin: 0 auto;
  }

  .faq-toggle {
    text-align: left;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    padding-top: 150px;
  }

  .site-footer::before {
    height: 130px;
    background-size: cover;
  }

  .footer-top-row {
    justify-content: center;
    text-align: center;
  }

  .footer-logo img {
    margin: -20px auto 15px;
  }

  .footer-nav ul {
    justify-content: center;
  }
}

/* ---------- max-width: 767px ---------- */
@media (max-width: 767px) {
  
  .hero .container{
    flex-direction: column;
    align-items: center;
  }

  .hero-inner {
    max-width: 100%;
    text-align: center;
    padding: 30px 15px 40px;
  }

  .hero-headline {
    font-size: 33px;
    line-height: 34px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  /* 4. Intro */
  .intro-text {
    text-align: center;
    padding: 0;
  }

  .intro-text p,
  .pledge-text p, .approach-text p {
    font-size: 20px;
  }

  .pledge-container{
    margin-top: -100px;
  }

  .intro-media{
    display: flex;
    align-items: center;
    max-height: 100%;
    height: 70vh;

  }

  .intro-text h2,
  .approach-text h2,
  .pledge-text h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .approach-text,
  .pledge-text {
    text-align: center;
  }

  .pi-section,
  .faq {
    padding: 60px 0 65px;
  }

  .attorney-heading h2 {
    font-size: 35px;
  }

  .attorney-heading p {
    font-size: 18px;
  }

  .attorney-photo {
    max-width: 260px;
    margin: 0 auto -45px;
  }

  .attorney-info {
    margin-top: 40px;
    padding: 35px 15px 20px;
  }

  .attorney-info h3 {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 18px;
  }

  .attorney-bio {
    min-height: auto;
    margin-bottom: 30px;
  }

  .faq-heading {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .faq-toggle {
    font-size: 18px;
  }

  .review-nav {
    display: flex;
  }

  .reviews-dots {
    display: flex;
  }

  .reviews-grid {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: unset;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
  }

  .review-card {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    border: 0;
    padding: 10px 15px 0;
  }

  .review-card:first-child {
    border: 0;
  }

  .review-card .five-stars {
    justify-content: center;
  }

  .review-card p {
    font-size: 16px;
    line-height: 22px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 5px;
  }

  .traffic-map-embed {
    height: 450px;
  }

  .office-card h3 {
    font-size: 25px;
    line-height: 30px;
  }

  .site-footer::before {
    height: 138px;
  }

  .site-footer {
    padding-top: 50px;
  }

  .footer-nav a {
    font-size: 18px;
    padding: 10px;
  }

  .footer-top-row{
    display: flex;
    flex-direction: column;
    align-items: center;

  }

  .footer-logo{
    margin-bottom: 5px;

  }

  .footer-nav{
    margin-top: -40px;
  }

  .footer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .footer-bottom-row {
    justify-content: center;
    text-align: center;
  }

  .footer-copyright {
    text-align: center;
    width: 100%;
  }

  .footer-socials {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }


}

/* ---------- max-width: 575px ---------- */
@media (max-width: 575px) {
  
  .firm-logo {
    position: relative;
    top: -20px;
    left: -10px;
    width: 50px;

  }

  .hero{
    margin-top: 0;
  }

  .hero-eyebrow {
    font-size: 15px;
  }

  .hero-subtext br {
    display: none;
  }

  .hero-cta {
    min-width: unset;
    width: 80%;
  }

  .badges-heading {
    font-size: 15px;
  }

  .badge-item img {
    max-width: 80px;
  }

  .intro-text p,
  .pledge-text p {
    font-size: 15px;
  }

  .approach-text p {
    font-size: 15px;
  }

  .pi-left p {
    font-size: 15px;
    line-height: 25px;
  }

  .pi-right p {
    font-size: 16px;
    line-height: 25px;
  }

  .pi-checklist {
    gap: 16px;
    text-align: left;
  }

  .pi-checklist li {
    gap: 12px;
    font-size: 16px;
  }

  .pi-cta {
    min-width: unset;
    width: 100%;
  }

  .attorney-info .btn {
    min-width: unset;
    width: 100%;
  }

  .faq-panel p {
    font-size: 15px;
    line-height: 25px;
  }

  .office-subtext {
    font-size: 16px;
    line-height: 20px;
  }
}